home *** CD-ROM | disk | FTP | other *** search
/ Computer Arts Interactive 4 / CARTS4.iso / mac / MiniCad 6.0.1 demo / MiniCad 6.0.1 Demo / MiniCad 6.0.1 Demo.rsrc / STR#_7012.txt < prev    next >
Text File  |  1996-03-22  |  647b  |  49 lines

  1. Converts decimal degrees into radians.
  2.  
  3. Deg2Rad(DegreeValue : REAL) : REAL;
  4.  
  5. Converts radians into decimal degrees.
  6.  
  7. Rad2Deg(RadianValue : REAL) : REAL;
  8.  
  9. Returns the arccosine of v in radians.
  10.  
  11. ArcCos(v) : REAL;
  12.  
  13. Returns the arcsine of v in radians.
  14.  
  15. ArcSin(v) : REAL;
  16.  
  17. Returns the arctangent of v in radians.
  18.  
  19. ArcTan(v) : REAL;
  20.  
  21. Returns the square root of v.
  22.  
  23. Sqrt(v) : REAL;
  24.  
  25. Returns the natural logarithm of v.
  26.  
  27. Ln(v) : REAL;
  28.  
  29. Returns the natural exponential of a v.
  30.  
  31. Exp(v) : REAL;
  32.  
  33. Returns the cosine of v.
  34.  
  35. Cos(v) : REAL;
  36.  
  37. Returns the sine of v.
  38.  
  39. Sin(v) : REAL;
  40.  
  41. Returns the square of v.
  42.  
  43. Sqr(v);
  44.  
  45. Returns the absolute value of v.
  46.  
  47. Abs(v);
  48.  
  49.